When closing the application window before closing the inspector window,
the selected widget will be set to NULL once and all the property pages
will try to g_object_weak_unref that NULL widget, so bail out in
gtk_inspector_prop_list_set_object if it's NULL.
https://bugzilla.gnome.org/show_bug.cgi?id=736201
guint num_properties;
guint i;
- if (pl->priv->object == object)
+ if (pl->priv->object == object || !object)
return FALSE;
cleanup_object (pl);